home *** CD-ROM | disk | FTP | other *** search
- // data.cpp : implementation file
- //
- /******************************************************************************\
- *
- * (C) Copyright 1996 by Shetef Solutions Ltd.
- *
- * Address:
- * Shetef Solutions Ltd.
- * P. O. Box 7938
- * Haifa 31078
- * ISRAEL
- *
- * Email : Support@shetef.com
- * WWW: http://www.shetef.com
- * Tel: +972-4-8260064
- * Fax: +972-6-271210
- *
- \******************************************************************************/
-
-
- #include "stdafx.h"
- #include "sstest.h"
- #include "data.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CData dialog
-
-
- CData::CData(CWnd* pParent /*=NULL*/)
- : CDialog(CData::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CData)
- m_Data = _T("");
- m_bSubDir = FALSE;
- m_bExclude = FALSE;
- //}}AFX_DATA_INIT
- }
-
-
- void CData::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CData)
- DDX_Text(pDX, IDC_EDIT1, m_Data);
- DDX_Check(pDX, IDC_SUBSIR, m_bSubDir);
- DDX_Check(pDX, IDC_EXCLUDE, m_bExclude);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CData, CDialog)
- //{{AFX_MSG_MAP(CData)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CData message handlers
-
- void CData::OnOK()
- {
- // TODO: Add extra validation here
-
- CDialog::OnOK();
- }
-
- BOOL CData::OnInitDialog()
- {
- CDialog::OnInitDialog();
-
- // TODO: Add extra initialization here
-
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
-